home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / BoxMooV / headers / BoxPaint_main.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-14  |  925 b   |  31 lines  |  [TEXT/CWIE]

  1. /*  main.h                                                                        
  2.                                                                                     
  3.   This is BoxPaint, a sample app designed to show how getting UV data from
  4.   a pick object can be used to draw on a texture. This app does not have        
  5.   graceful error handling - it's purpose is to demonstrate UV picking.                                                                        
  6.                                                                                     
  7.   Michael Bishop - August 21 1996                                                    
  8.   Nick Thompson
  9.   Robert Dierkes                                                                                
  10.   (c)1994-96 Apple Computer Inc., All Rights Reserved                                
  11.  
  12. */
  13.  
  14. #ifndef _MAIN_H_
  15. #define _MAIN_H_
  16.  
  17. /* ------------------------------------------------------------------------------------------- */
  18. /*  globals - defined in main.c */
  19. extern Boolean gQuitFlag ;
  20. extern Boolean gForeground;
  21. extern    short    gTicks ;
  22.  
  23. /* ------------------------------------------------------------------------------------------- */
  24. /*  constants - defined in main.c */
  25.  
  26. /*  function prototypes */
  27.  
  28. void        Main_DoAbout( void );
  29.  
  30. #endif
  31.